set grollerList to [#sprites: [8, 9, 10, 11, 12, 13], #memNumbers: [the number of member "style 1", the number of member "style 2", the number of member "style 3", the number of member "style 4", the number of member "style 5", the number of member "style 6"]]
end
on showMenuRolls
case 1 of
rollOver(3):
set thisName to "1A"
showBalloon(thisName)
rollOver(4):
set thisName to "1B"
showBalloon(thisName)
rollOver(5):
set thisName to "1C"
showBalloon(thisName)
rollOver(6):
set thisName to "1D"
showBalloon(thisName)
rollOver(7):
set thisName to "1E"
showBalloon(thisName)
otherwise:
set the loc of sprite balloonSprite to point(-4444, -4444)
end case
end
on showBalloon artName
set the member of sprite balloonSprite to member (artName && "balloon")
set the loc of sprite balloonSprite to point(320, 240)
end
on clearBalloon
set the loc of sprite balloonSprite to point(-4444, -4444)
end
on showRoller thisSprite, artName
puppetSprite(thisSprite, 1)
set the member of sprite thisSprite to member (artName && "roll")
end
on rollSound thisSprite, thisName
global gLastSounder
puppetSound(0)
if thisSprite <> gLastSounder then
puppetSound(thisName && "sound")
set gLastSounder to thisSprite
end if
end
on rollerCheck vMouseCast
set rollTest to 0
set vMemList to getaProp(grollerList, #memNumbers)